home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
UNIXTOOL
/
UNIXLIB37B
/
!UnixLib37_netlib_clib_netinet_h_udp
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-05-10
|
339 b
|
19 lines
#ifndef __netinet_udp_h
#define __netinet_udp_h
#include <sys/types.h>
/*
* Structure of a UDP header
* Per RFC 768, September, 1981.
*/
struct udphdr {
u_short uh_sport; /* Source port */
u_short uh_dport; /* Destination port */
short uh_ulen; /* Length */
u_short uh_sum; /* Checksum */
};
#endif